home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  142 b   |  9 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. void bcopy(char *b1, char *b2, int length)
  5. {
  6.   /* Unoptimised version */
  7.   memmove(b2, b1, length);
  8. }
  9.